home *** CD-ROM | disk | FTP | other *** search
/ Univers Mac Interactif 42 / Univers Mac Interactif - Issue 42.iso / >interactif / Démos Voyager / IPTR.DIR / 00022_Script_MOVIE SCRIPT < prev    next >
Text File  |  1994-10-23  |  535b  |  32 lines

  1. --NOTE: please check how this looks on 16-bit color monitor
  2.  
  3. on startMovie
  4.   set the stagecolor to 255 --black
  5.   cursor 200
  6. end
  7.  
  8. on enterframe 
  9.   cursor 200
  10. end
  11.  
  12. on waitQT chan
  13.   if the movierate of sprite chan = 1 then go the frame 
  14. end
  15.  
  16. on waitsound chan
  17.   if soundBusy(chan) then go the frame
  18. end
  19.  
  20. on waiting theTicks
  21.   --must be preceded by startTimer
  22.   if theTicks >= the timer then go the frame
  23. end
  24.  
  25. on keyDown
  26.    global autoplaying
  27.   put 0 into autoplaying
  28.   unloadCast
  29.   go to label ("end")
  30. end
  31.  
  32.